home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Periodicals / develop / develop 6 code / Threads / Examples in Pascal / P Build Commands next >
Encoding:
Text File  |  1991-10-10  |  727 b   |  27 lines  |  [TEXT/MPS ]

  1. ## You need to copy the files "Threads.o" and ThreadsIntf.p into the same folder
  2. ## as the sources (or change the build commands below)
  3.  
  4. Pascal "SillyBalls w/ 30 Beeps.p"
  5. Link "SillyBalls w/ 30 Beeps.p.o" ∂
  6.     "{Libraries}"Interface.o ∂
  7.     "{Libraries}"Runtime.o ∂
  8.     "{PLibraries}"Paslib.o ∂
  9.     Threads.o ∂
  10.     -o "SillyBalls w/ 30 Beeps"
  11.  
  12. Pascal "SillyBalls w/ Semaphore.p"
  13. Link "SillyBalls w/ Semaphore.p.o" ∂
  14.     "{Libraries}"Interface.o ∂
  15.     "{Libraries}"Runtime.o ∂
  16.     "{PLibraries}"Paslib.o ∂
  17.     Threads.o ∂
  18.     -o "SillyBalls w/ Semaphore"
  19.  
  20. Pascal "SillyBalls w/ custom swap.p"
  21. Link "SillyBalls w/ custom swap.p.o" ∂
  22.     "{Libraries}"Interface.o ∂
  23.     "{Libraries}"Runtime.o ∂
  24.     "{PLibraries}"Paslib.o ∂
  25.     Threads.o ∂
  26.     -o "SillyBalls w/ custom swap"
  27.